* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: auto;
    background: linear-gradient(90deg,
            #22170f 0%,
            #3a2a1e 35%,
            #4b3626 70%,
            #6a4a30 100%);
    scrollbar-gutter: stable;
}

.pageContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 60px;
}

.gridContainer {
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    width: 100%;
    max-width: 1600px;
    box-sizing: border-box;
}

.itemContainer {
    border: 4px solid black;
    background-color: #58181f;
    border-radius: 20px;
    padding-top: 10px;
    width: 100%;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.gameContainer {
    border-radius: 20px;
    width: 100%;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

h2 {
    font-family: 'Cinzel Decorative';
    text-transform: uppercase;
    border-bottom: 2px solid white;
    color: white;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    width: calc(100% - 30px);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.itemText {
    font-family: 'Cinzel Regular';
    text-align: start;
    color: white;
    opacity: 70%;
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 20px;
    padding-right: 15px;
}

.serviceDescription {
    opacity: 80%;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 18px;
}

.staffStatusContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    color: white;
}

.servicePrice {
    display: flex;
    margin: 0 auto;
    border-radius: 20px;
    font-weight: bolder;
    padding: 0px 20px 20px20px;
    font-size: 18px;
    color: white;
    text-align: center;
}

.staffTagImg {
    height: 40px;
    width: 40px;
}

.staffStatusContainer p {
    font-weight: 500;
    font-size: 24px;
    opacity: 0.8;
    margin-left: 5px;
}



@media (max-width: 714px) {
    h2 {
        font-size: 16px;
    }

    .threeGridContainer {
        padding-top: 30px;
    }

    .twoGridContainer {
        grid-template-columns: repeat(1, 1fr);
    }

    .itemContainer {
        padding: 10px;
    }

    .itemContainer p,
    h2 {
        font-size: 16px;
    }

    .itemText {
        font-size: 12px;
    }
}